Form for sign up for the git committed workshop
- Clone the repository using
git clone https://github.com/Android-Club-VITC/git-commited-form.git
- Create a new branch following the nomenclature
username/label/issue-name
- Create .env file in your root folder and write
GOOGLE_API_KEY = api-key-here
- Work on your branch only on the file relating to your issue
- Push changes to your branch using
git add .
- adds all changed to files to be ready to be commitedgit commit -m "COMMIT MESSAGE"
- commit to your changes to your local gitgit push origin YOUR-BRANCH-NAME
- push your changes to remote git
If the above does not update your branch then type in git fetch origin branch-name
and do git pull origin branch-name
again.
For more git commands,etc read yourself. Self learning is best learning.