Skip to content

xyn1nja/golden-years

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Steps BEFORE you start work

  1. git pull in your main (so that the latest work is in your main)

    • type git pull
  2. Git switch to your own branch (so that the latest work is copied into your branch)

    • type git switch
    • type git branch to check
    • type git merge (So that if you have pull info into your main from the remote and now your local main is different from your branch, you want to merge your branch with your main)
  3. Do your work in your own branch

  4. Once done git add. and git commit (so that changes go up into the staging area)

  5. git switch to main branch (so that your changes are reflected in the main branch)

  6. git pull (changes by other users can be reflected)

  7. git merge (combine your work in your main with the others)

  8. git push origin main (push local data up to the remote)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 96.2%
  • CSS 2.4%
  • HTML 1.4%