设置git的用户名和邮箱
git config --global user.name "My Name" git config --global user.email "my@email.com"
基础操作
git clone git@server:app.git myrepo //克隆工程 git pull //从远端库更新并合并代码 git fetch //从远端库获取代码 git merge //合并代码 git branch xx //新建分支 git checkout xx //切换到分支xx git branch //查看分支列表 git branch -d xx //删除分支 git push origin local:remote //将本地的分支local提交到远端库的remote分支 git commit -m 'message' //提交代码 git add [.|file]//将 [所有|指定] 文件加入到版本控制中 git rm file //将文件删除版本控制
没有评论:
发表评论