Skip to content

bashiraziz/presidential-cs-program

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Steps for forking this repo and then sync when required

Step 1: Open site

https://github.com/panacloud/presidential-cs-program

Step 2: Fork on your repo

Press the button on the right top corner there is fork button

Step 3: Open Terminal and make directory

$ mkdir ai-web

Step 4: Goto to your repository and clone it on local directory (Don't forget to change below url)

$ git clone https://github.com/aamirpinger/presidential-cs-program.git

Step 5: Check connected repo

$ git remote -v

origin https://github.com/YOUR_USERNAME/YOUR_FORK.git (fetch)

origin https://github.com/YOUR_USERNAME/YOUR_FORK.git (push)

Step 6: add master repository for sync

$ git remote add main https://github.com/panacloud/presidential-cs-program.git

Step 7: recheck connected repos

$ git remote -v

origin https://github.com/YOUR_USERNAME/YOUR_FORK.git (fetch)

origin https://github.com/YOUR_USERNAME/YOUR_FORK.git (push)

main https://github.com/panacloud/presidential-cs-program.git (fetch)

main https://github.com/panacloud/presidential-cs-program.git (push)

Step 8: Start Sync

$ git fetch main

remote: Counting objects: 75, done.

remote: Compressing objects: 100% (53/53), done.

remote: Total 62 (delta 27), reused 44 (delta 9)

Unpacking objects: 100% (62/62), done.

From https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY

  • [new branch] master -> main/master

Step 9: checkout branch

$ git checkout master

Switched to branch 'master'

Step 10: finally download new updates from master repo to local

$ git merge main/master

Updating a422352..5fdff0f

Fast-forward

README | 9 -------

README.md | 7 ++++++

2 files changed, 7 insertions(+), 9 deletions(-)

delete mode 100644 README

create mode 100644 README.md

PLEASE NOTE: above procedures will not update ur forked repo on github, you have to follow regular steps to upload updated data by git push command

About

Website for the President's AI and Cloud Computing Program

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 80.3%
  • HTML 12.3%
  • CSS 6.3%
  • Dockerfile 1.1%