Search Unix Commands/Scripts


  Help us in improving the repository. Add new commands/scripts through 'Submit Commands/Scripts ' link.





Unix Commands/Scripts

 Sample 1. Push your project to Git

cd <PROJECT_ROOT_DIRECTORY>
git init
git add --all
git commit -m "<COMMIT_COMMENT>"
git remote add origin <GIT_REPO_CLONE_URL>
git push -u origin <BRANCH>

example

cd /home
git init
git add --all
git commit -m "First Commit"
git remote add origin https://xys/abc.git
git push -u origin master

   Like      Feedback     Git



Subscribe to Java News and Posts. Get latest updates and posts on Java from Buggybread.com
Enter your email address:
Delivered by FeedBurner