Changes between Version 9 and Version 10 of DRM4G/Development
- Timestamp:
- Dec 7, 2016 4:51:03 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DRM4G/Development
v9 v10 117 117 * The '''develop''' branch reflects the whole evolution of the project. It shows all of the new features and bug fixes that have been included. This is the main branch where all of the work will be done. 118 118 119 ---- 119 120 If during development, you find yourself working in a team and wish to share your code, push your work to our ''central'' repository in ''!GitBucket'', not ''!GitHub''. 120 121 {{{#!sh … … 126 127 git push origin :<branch_name> #deletes the same branch from the remote repository 127 128 }}} 129 130 ---- 131 Another reminder, is that before ''pushing'' your work onto the remote repositories, you should always check that no changes have been made in them. 132 {{{#!sh 133 git remote -v update #updates your remote refs and shows the state of the branches 134 git status -uno #informs you whether your current branch is ahead, behind or has diverged from the remote 135 }}} 136 137 In the case that changes exist in the remote repository, you should perform a ''pull'', resolve any possible conflicts, and then make the ''push''. 138 {{{#!sh 139 git pull origin <branch_name> 140 #do necessary operations 141 git push origin <branch_name> 142 }}} 143 144 128 145 129 146 === Adding new features ===