Steps to Set Up the "Lazy" Alias
Open the Git Configuration File
On macOS or Linux, open your terminal and run:
git config --global --edit
On Windows, use:
git config --global -e
Add the Alias Using Vim
Once the configuration file opens (by default in Vim), navigate to the section labeled [alias]. If it doesn't exist, create it.
Add the following code under the [alias] section:
[alias]
lazy = "!f() { git add -A && git commit -m \"$@\" && git push; }; f"
Save and Exit
In Vim, press Esc and type :wq to save and close the file.
NOTE: Instead of "lazy" you can use any shortcut you want.
Usage of the "Lazy" Alias
Now, you can commit and push changes with a single command. Simply type:
git lazy "Your commit message"
Top comments (0)