Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 436 Bytes

File metadata and controls

19 lines (10 loc) · 436 Bytes

Getting Started

git config user.name your_github_username

git config user.email your_github_email

git remote add origin https://github.com/Parth909/hackerscript_3.git

git branch -M main

git push -u origin main

Pulling Changes from Original Hackerscript Repo (from Parth909)

git remote add upstream https://github.com/Parth909/hackerscript_3.git

git fetch upstream

git merge upstream/main main