commit 1e836f1a2b847cef605a966c0d003c1f140fc979
parent 434a1cfc8b2ce6b968c9838cf1a7d7e05ad78fac
Author: Remy Noulin (Spartatek) <remy.noulin@spartatek.se>
Date: Mon, 21 Nov 2016 06:50:14 +0100
update readme
Diffstat:
2 files changed, 8 insertions(+), 26 deletions(-)
diff --git a/README.md b/README.md
@@ -12,10 +12,14 @@ git off track '*.bin'
git off now handles files with bin extensions
git add .
use git normally
+ git off caches bin files
git commit
+ git off caches new bin files
git push
+ git off sends bin files to store
git checkout master
checkout commit with bin files
+ git off downloads bin files from store
```
# Other
@@ -44,76 +48,50 @@ git off defaults
git off install [thisrepo]
setup git config (default global)
thisrepo sets up config in current repo
-```
-```
git off mode [thisrepo] [copy|scp]
set/show git off mode
-```
-```
git off scp [thisrepo] [host]
setup scp config
host has format host:path
Example: localhost:/tmp/offStore
-```
-```
git off scpuser [thisrepo] [username]
setup scp username config
-```
-```
git off track
setup gitattribute filters
example: git off track '*.bin'
without parameter, list git off attributes
calls git off install
-```
-```
git off clean
internal filter
-```
-```
git off smudge
internal filter
-```
-```
git off pre-push
internal filter
-```
-```
git off smudge
internal filter
-```
-```
git off clearAll
git off ca
delete store, cache and log
-```
-```
git off clearCache
git off cc
deletes cache in current git
-```
-```
git off defaults
shows first time config
-```
-```
git off env
shows config
-```
-```
git off help
shows git off help
```
diff --git a/src/gitoff.coffee b/src/gitoff.coffee
@@ -734,10 +734,14 @@ if process.argv[2] == 'help' or process.argv[2] == undefined
console.log " git off now handles files with bin extensions".green
console.log 'git add .'
console.log ' use git normally'.green
+ console.log ' git off caches bin files'.green
console.log 'git commit'
+ console.log ' git off caches new bin files'.green
console.log 'git push'
+ console.log ' git off sends bin files to store'.green
console.log 'git checkout master'
console.log ' checkout commit with bin files'.green
+ console.log ' git off downloads bin files from store'.green
console.log '\n# Other\n'.green.bold
console.log 'git off install'
console.log ' setup git config (default global)'.green