Skip to content

Latest commit

 

History

History
55 lines (39 loc) · 1.15 KB

SETUP.md

File metadata and controls

55 lines (39 loc) · 1.15 KB

Smart Attendance Tracker

Steps to be followed for creating Pull Request

1. Fork

You can find the fork buttom in the top right corner.

2. Clone

$ git clone https://github.com/YourUserName/attendanceApp.git

3. Move Directory

# This will change directory to a folder attendanceApp
$ cd attendanceApp

4. Set up

$ git remote -v
$ git remote add upstream https://github.com/akilvishnum/attendanceApp.git

5. Create Branch

#Create branch named "yourBranchName"
git checkout -b yourBranchName

#Move to branch "yourBranchName"
git checkout yourBranchName

git add .

git commit -m "Relevant Message"

git push -u origin yourBranchName

6.Sync

Run this to reflect any changes done in the main in your local repo

git fetch --all --prune

git checkout main

git reset --hard upstream/main

git push origin main

Useful Links:

  1. Making Changes in your Repos
  2. Making Changes in the Main Repo