This is the Demo Used in Hacktoberfest 2018 Galle Chapter.
# Setup git with your your credentials
git config --global user.name "Your Name"
git config user.email "[email protected]"
# Download the code to your local computer
git clone https://github.com/YOUR_USERNAME/YOUR_REPOSITORY
# Configure where to upload the code
git remote add origin https://github.com/YOUR_USERNAME/YOUR_REPOSITORY
# Tell Git to track changes of all the files in this directory
git add .
# Save Changes you made
git commit -m "Commit Message"
# Send your code to the GitHub
git push -u origin master
# Create a copy of this repository
git clone https://github.com/mrsupiri/hacktoberfest-2018-galle-chapter
# Configure where to upload the code
git remote add origin https://github.com/mrsupiri/hacktoberfest-2018-galle-chapter
# Create new container hold your code
git branch your_branch_name
# Use the created container
git checkout checkout your_branch_name
# Tell Git to track changes of all the files in this directory
git add .
# Save Changes you made
git commit -m "Commit Message"
# Send your code to the GitHub
git push -u origin your_branch_name
Participant's Name | Participant's Github Username |
---|---|
Isala Piyarisi | mrsupiri |