Changes between Version 15 and Version 16 of u/erica/GitRepos
- Timestamp:
- 05/19/15 14:14:57 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
u/erica/GitRepos
v15 v16 87 87 }}} 88 88 89 and do a regular diff from the terminal. The commit # is found in 89 and do a regular diff from the terminal, e.g.: 90 91 {{{ 92 diff old.f90 new.f90 93 }}} 94 95 96 The commit # is found in 90 97 91 98 {{{ … … 93 100 }}} 94 101 95 96 Now, as you go on to make changes to your branch, they will be local until you commit and push those changes back into the central repo. (cf. [https://astrobear.pas.rochester.edu/trac/wiki/DevelopmentProcedure here] for details).97 98 To keep track of your changes, you give the command,99 100 {{{101 git status102 }}}103 102 104 103 Now, the procedure for pushing changes into the development branch goes as follows. Once your changes are ready to go into the dev branch, you want to switch back to the development branch and update it so that your changes are going to be merged with the ''newest'' version of the dev branch. You do this with,