Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/erikzaadi/gitcommonusagebatchfiles
Collection of batch / bash files to save time for common git usage
https://github.com/erikzaadi/gitcommonusagebatchfiles
Last synced: 17 days 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 14 years ago)
- Default Branch: master
- Last Pushed: 2010-04-17T12:32:24.000Z (over 14 years ago)
- Last Synced: 2024-10-08T13:22:10.459Z (about 1 month 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 parametergitac "Commit Message"
Commit
Commits all modified or staged files
Needs a commit message enclosed in doublequotes as parametergitc "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!