Skip to content

Latest commit

 

History

History
47 lines (25 loc) · 1012 Bytes

README.md

File metadata and controls

47 lines (25 loc) · 1012 Bytes

VERSION CONTROL



git index

VERSION CONTROL WITH GIT ⚙️



Join Our Community
Telegram

Before we start, we recommend to use linux OS i.e any distribution

windows & macOS
  • launch terminal ctrl + Alt + T
  • move to the desktop cd Desktop
  • create a folder mkdir <new>
  • initialise our folder git init
  • create a file pico <new>
  • add a file to the working tree. git add -A
  • committ a change to our repository. git commit -m <new>
  • check the status. git status
  • create branches. git checkout -b <new>
  • change into a different branch. git branch <branch name>

Contribute

This project exists thanks to all the contributors.