Git提交代码的操作
1.首先需要切换分支git checkout XXX
2.查看状态 git status
3. 提交代码到缓存 git add . (注意 . )
4. 提交代码 git commit -m '文件的描述'
5. 提交代码到远程分支,git push origin feature_front_xu
从远程获取最新版本并merge到本地
1. git status(查看本地分支文件信息,确保更新时不产生冲突)
2. git checkout -- [file name] (若文件有修改,可以还原到最初状态; 若文件需要更新到服务器上,应该先merge到服务器,再更新到本地)
3. git branch(查看当前分支情况)
4. git checkout [remote branch](若分支为本地分支,则需切换到服务器的远程分支)
5. git pull 若命令执行成功,则更新代码成功!
如果本地修改过了。
使用
1.git stash
2.git pull
3. git stash pop