Skip to content

omgshalihin/git-addCommitPush-allInOneCommand

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

Git All-In-One Command

Put all git add, git commit, git push command in a makefile.

  • within the project's root directory
touch makefile
  • within the file, add the following commands (note: those are tabs not spaces)
git:
  git add .
  git commit -m "$m"
  git push -u origin main
  • when you are ready, use this command in your CLI
make git m="<your message>"

Now, you don't have to manually type them individually. Try it!

About

Git Command Template:Put all git add, git commit, git push command in a makefile

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published