We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
作者:李大狗
每次切换分支,当前分支一定要干净(已提交状态)可以查看该分支的状态,nothing to commit,working tree clean,为干净,如果有修改,没有git add或者没有Git commit,那么会报错。
git status
当A,B两个人分别创建分支,完成各项功能,其中A修改完提交了,而此时B再提交就会产生冲突,此时要进行更新刚才A的修改,这里不要担心会把你自己的修改覆盖掉:
git pull origin master
The text was updated successfully, but these errors were encountered:
No branches or pull requests
作者:李大狗
每次切换分支,当前分支一定要干净(已提交状态)可以查看该分支的状态,nothing to commit,working tree clean,为干净,如果有修改,没有git add或者没有Git commit,那么会报错。
当A,B两个人分别创建分支,完成各项功能,其中A修改完提交了,而此时B再提交就会产生冲突,此时要进行更新刚才A的修改,这里不要担心会把你自己的修改覆盖掉:
The text was updated successfully, but these errors were encountered: