1. Create New git repository for java application
2. Created Repository for java Application
3. Git Project clone into Local folder
$ git clone http://192.168.1.110:8300/STR/pacspruapi.git
$ git status
$ git add .
$ git status
$ git commit -m 'comment for the commit'
$ git status
$ git remote -v # to display the available remote repository
$ git push origin master
$ git remote show origin
# Use Git pull to sync with the remote
$ git pull
Change the Readme file
$ git add README.md
$ git commit -m 'Readme file updated - Tamilarasan'
Git Push the changes to Repository
$ git push origin master
10. Verify the Code in Gogs repository
No comments:
Post a Comment