We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ff43df8 + ff1e45e commit cd420c7Copy full SHA for cd420c7
README.md
@@ -16,6 +16,14 @@ echo 'alias gs="git status"' >> $LAZYGITCOMMIT_FILE
16
17
That's it!
18
19
+## Fast way to install
20
+
21
+Run
22
23
+```bash
24
+curl https://raw.githubusercontent.com/ivan-developer-01/lazy-gitcommit/main/install.sh | sh
25
+```
26
27
## Help on commands
28
29
- `gc` - Add the current directory to Git and commit changes
install.sh
@@ -0,0 +1,5 @@
1
+LAZYGITCOMMIT_FILE=~/.bashrc
2
+echo 'function gc { git add .; git commit -S -m "$*"; };' >> $LAZYGITCOMMIT_FILE
3
+echo 'alias gp="git push"' >> $LAZYGITCOMMIT_FILE
4
+echo 'alias gl="git log"' >> $LAZYGITCOMMIT_FILE
5
+echo 'alias gs="git status"' >> $LAZYGITCOMMIT_FILE
0 commit comments