常用命令
// 查看git下的文件状态
git status
git add .
git add modules/mpaas-core/sample
git commit -m "xxx"
git push -u origin branch_name
git push origin HEAD:first
git pull
git pull --rebase
git stash
git stash list
git stash pop
git remote add origin 远端仓库的URL
//获取git的远程详细信息,查、看与远程仓库是否关联
git remote -v
git log
git branch
git branch -a
git checkout
git clone 远端仓库地址
git reset [--hard | --soft] commitID
git revert [--hard | --soft] commitID
git cherry-pick commitID
注意事项
● git push之前先 git pull,确保本地是最新的代码;如果不是,先暂存(git stash)本地的更改,git pull下最新代码,在git stash pop暂存的更改。