15 - Version Control With Git
15 - Version Control With Git
Software Engineering
Chapter 09
Lesson 15: Version Control with Git
Every time you want to do something with Git, you will need to do this.
This command shows current status of your Repository, i.e. which files are
Modified, which files are not yet tracked by Git etc…
It shows that, Readme.txt is an “Untracked” file. That is, Git does not know
Anything about this file. You should type git add –A to start tracking
All untracked files.
1. Provide a Name
Wow! Git has created the repo for him with my codes “Readme.txt” & “main.cpp”
Note that this is his own local repo in his computer. He can do whatever he wants..
July 30, 2020 502045 - Version Control with Git 49
Shafiul will Push…