https://github.com/erikzaadi/gitcommonusagebatchfiles
Collection of batch / bash files to save time for common git usage
https://github.com/erikzaadi/gitcommonusagebatchfiles
Last synced: 9 months ago
JSON representation
Collection of batch / bash files to save time for common git usage
- Host: GitHub
- URL: https://github.com/erikzaadi/gitcommonusagebatchfiles
- Owner: erikzaadi
- Created: 2010-04-17T11:35:20.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2010-04-17T12:32:24.000Z (over 15 years ago)
- Last Synced: 2025-02-09T20:15:18.335Z (11 months ago)
- Homepage:
- Size: 93.8 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
A collection of batch files to save some time on those reoccuring git interactions
Add And Commit
Adds all new files with "git add .", then commits the files
Needs a commit message enclosed in doublequotes as parameter
gitac "Commit Message"
Commit
Commits all modified or staged files
Needs a commit message enclosed in doublequotes as parameter
gitc "Commit Message"
Pull Origin Master
Pulls the latest changes from your origin/master and merges them
gitpl
Push Origin Master
Pushes the latest commit to your origin/master
gitpsh
Status
Shows the git status
gits
Enjoy!