Documentation.
This commit is contained in:
@@ -17,6 +17,9 @@
|
||||
git-commit
|
||||
git-pull
|
||||
git-push
|
||||
git-fetch
|
||||
git-switch
|
||||
git-tag
|
||||
git-log
|
||||
git-grep
|
||||
git-branch
|
||||
@@ -215,6 +218,14 @@
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
(def-cmd git-pull cmd-git-pull 'pull)
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
; goal : Download refs and objects from a remote repository.
|
||||
; pre : The supplied arguments are valid for git fetch.
|
||||
; post : Git fetch has completed successfully or an exception has been raised.
|
||||
; result : #t after a successful fetch.
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
(def-cmd git-fetch cmd-git-fetch 'fetch)
|
||||
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
; goal : List, create or delete branches.
|
||||
@@ -224,6 +235,14 @@
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
(def-cmd git-branch cmd-git-branch 'branch)
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
; goal : Switch branches.
|
||||
; pre : The supplied arguments are valid for git switch.
|
||||
; post : Git switch has completed successfully or an exception has been raised.
|
||||
; result : #t after a successful switch.
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
(def-cmd git-switch cmd-git-switch 'switch)
|
||||
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
; goal : Clone a repository into a new directory.
|
||||
@@ -233,6 +252,14 @@
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
(def-cmd git-clone cmd-git-clone 'clone)
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
; goal : List, create, delete or verify tags.
|
||||
; pre : The supplied arguments are valid for git tag.
|
||||
; post : Git tag has completed successfully or an exception has been raised.
|
||||
; result : #t after a successful tag command.
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
(def-cmd git-tag cmd-git-tag 'tag)
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
; goal : Display the Git commit log or return it as a Racket list.
|
||||
; pre : The supplied arguments are valid for git log; --list and -l are git-cli options.
|
||||
|
||||
Reference in New Issue
Block a user