Skip to content

Nis7538/open-source

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

visitors Merged Pull Requests

Git installation

Install Git from this link:- https://git-scm.com/downloads

To check the Git version

git --version

To set the global Git username & email address

git config --global user.name "your name"
git config --global user.email "your email"

STEPS to contribute

  1. Clone the repository using HTTPS or SSH (If you don't have 2FA enabled).
git clone https://github.com/TERNA-ENGINEERING-COLLEGE-NAVI-MUMBAI/open-source.git

or PAT, more about it in the STEP 8.

git clone https://<GitHubToken>@github.com/<username>/<RepositoryName>.git
  1. Create a new branch.
git branch YourBranchName
  1. Shift to that branch from main branch.
git checkout YourBranchName

Add FirstName_LastName_GradYear in your HTML branch page under the appropriate division.

  1. Add all the changes you've made.
git add .
  1. Make a commit with a message of the changes you've done. Learn more about conventional commits here.
git commit -m 'your_message'
  1. Shift to the master branch.
git checkout main
  1. Merge everything from your branch to the master branch.
git merge YourBranchName
  1. Get ready to push from your local machine.

If you don't have 2FA enabled, then use the normal HTTPS or SSH link.

git remote add <message> https://github.com/TERNA-ENGINEERING-COLLEGE-NAVI-MUMBAI/open-source.git

Personal Access Token (PAT) is required if you enable 2FA on your Github account [link].

git remote add <message> https://<GitHubToken>@github.com/<username>/<RepositoryName>.git
  1. Push everything on your forked repository.
git push -u <message> main

About

Complete your first open-source contribution! 🚀

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 94.2%
  • CSS 5.8%