Skip to content

mcllerena/production_repo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

GIT

CONFIG:

  • git config --global user.email <email>
  • git config --global user.name <name>

CONCEPTS:

  • Repositories: Folders for files, managed by git.
  • Commits: Set of changes in a repository.
  • Branches
  • Merging
  • Tags

COMMANDS:

  • git init
  • git add <file>
  • git pull [origin xxxx]
  • git push [origin xxxx]
  • git branch
  • git branch -d
  • git checkout | git switch
  • git checkout -b <branch name>
  • git log
  • git merge
  • git rebase
  • git diff
  • git tag
  • git stash pop | recovers the last deleted commit
  • git reset
  • HEAD

WORK FLOW:

  • git init
  • git add .
  • git commit -m "message"
  • <create repo in web>
  • git remote add origin <link>
  • git branch -M main
  • git push -u origin main

TEST CHANGE

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages