Changes between Version 7 and Version 8 of cs222p-2018-fall-git
- Timestamp:
- Oct 4, 2018, 11:54:59 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cs222p-2018-fall-git
v7 v8 111 111 }}} 112 112 113 5. Alice wants to contribute too. First Bob needs to invite Alice as a contributor to this repository on the Github web site (by following steps given [https://help.github.com/articles/inviting-collaborators-to-a-personal-repository/ here]). Then she can see the repository. She does the following:113 4. Alice wants to contribute too. First Bob needs to invite Alice as a contributor to this repository on the Github web site (by following steps given [https://help.github.com/articles/inviting-collaborators-to-a-personal-repository/ here]). Then she can see the repository. She does the following: 114 114 115 115 {{{ … … 127 127 shell> git push - pushes the commit to bob-feature1 remote branch 128 128 }}} 129 6. Bob wants to continue coding. Before proceeding to modify any files, he needs to do 'git pull' so that the local branch pulls the latest code from the remote branch. In particular, Bob does:129 5. Bob wants to continue coding. Before proceeding to modify any files, he needs to do 'git pull' so that the local branch pulls the latest code from the remote branch. In particular, Bob does: 130 130 131 131 {{{ … … 134 134 }}} 135 135 136 7. Bob and Alice can also use github to create a pull request from the `bob-feature1` branch to the `master` branch to do code reviews. Check this [https://www.youtube.com/watch?v=oFYyTZwMyAg video] to learn this process.136 6. Bob and Alice can also use github to create a pull request from the `bob-feature1` branch to the `master` branch to do code reviews. Check this [https://www.youtube.com/watch?v=oFYyTZwMyAg video] to learn this process. 137 137 138 138 Refer to following tutorials for more information: