Changes in Master
Goals
- Learning how to deal with multiple branches with different (and possibly conflicting) changes.
While you were changing the greet branch, someone else decided to update the master branch. They added a README.
Switch to the master branch.
Execute:
git checkout master
Create the README.
README
This is the Hello World example from the git tutorial.
Commit the README to master.
Execute:
git add README
git commit -m "Added README"
当前内容版权归 gitimmersion 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 gitimmersion .