Skip to content

farhan156/hacktoberfest-2018-galle-chapter

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hacktoberfest 2018 Galle Chapter

This is the Demo Used in Hacktoberfest 2018 Galle Chapter.

Git Tutorial

Setup Git

# Setup git with your your credentials
git config --global user.name "Your Name"
git config user.email "[email protected]"

Update your Repository with Git

# 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

Make a Pull Request to Public Repository with Git

# 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

Participants List

Participant's Name Participant's Github Username
Isala Piyarisi mrsupiri

About

This is the Demo Used in Hacktoberfest 2018 Galle Chapter

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 85.0%
  • CSS 12.9%
  • PHP 2.1%