-
Notifications
You must be signed in to change notification settings - Fork 13
Home
bhaibeka edited this page Oct 19, 2011
·
10 revisions
Welcome to the genefu wiki!
- Go to the working directory
- Check if you have commits you still have to push: git status
- List all the repository aliases (by default you should have only one alias that is origin): git remote
- Fetch the new version of the code: git fetch -v origin
- List all the branches stored in the repository: git branch
- Update your directory with the last version of the files in the repository: git merge origin/master
- Alternatively, you could use a single command to fetch and merge sequentially: git pull -v origin master
- Edit any files
- Add the (potentially new) files you edited: git add . (this command will add your edits in ALL the files for the next commit)
- Commit your changes: git commit . -m 'my comments about my edits' (this command will commit your edits in ALL the files)
- Alternatively you could use a single command to add and commit all the files at once: git commit -am 'my comments about my edits'
- Push your edits to the remote repository: git push
See the the Git basics and tutorial for more details.
R CMD build --resave-data genefu
R CMD check genefu_*.*.*.tar.gz
(where * represents the current version)