diff options
author | https://www.google.com/accounts/o8/id?id=AItOawl9sYlePmv1xK-VvjBdN-5doOa_Xw-jH4U <Richard@web> | 2011-04-04 23:15:05 +0000 |
---|---|---|
committer | admin <admin@branchable.com> | 2011-04-04 23:15:05 +0000 |
commit | 708ae036819b9efe69e31cfacea78f8933779885 (patch) | |
tree | 61994856b4c00a346a83e8a7ffc946fa8010ded7 | |
parent | 9a8861c08f4856594952a4a68f7024d67f958187 (diff) |
-rw-r--r-- | doc/forum/bainstormning:_git_annex_push___38___pull.mdwn | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/forum/bainstormning:_git_annex_push___38___pull.mdwn b/doc/forum/bainstormning:_git_annex_push___38___pull.mdwn new file mode 100644 index 000000000..a2d320e35 --- /dev/null +++ b/doc/forum/bainstormning:_git_annex_push___38___pull.mdwn @@ -0,0 +1,21 @@ +Wouldn't it make sense to offer + + git annex pull + +which would basically do + + git pull + git annex get + +and + + git annex push + +which would do + + git annex commit . + git annex put # (the proposed "send to default annex" command) + git commit -a -m "$HOST $(date +%F-%H-%M-%S)" # or similar + git push + +Resulting in commands that are totally analogous to git push & pull: Sync all data from/to a remote. |