Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in
  • Git Beginners Git Beginners
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Issues 1
    • Issues 1
    • List
    • Boards
    • Service Desk
    • Milestones
    • Iterations
    • Requirements
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • Insights
    • Issue
  • Wiki
    • Wiki
  • Activity
  • Create a new issue
  • Issue Boards
Collapse sidebar
  • Computer-ScienceComputer-Science
  • Git BeginnersGit Beginners
  • Wiki
  • Home

Home · Changes

Page history
Update Home authored Jul 23, 2018 by Andrew James Collett's avatar Andrew James Collett
Hide whitespace changes
Inline Side-by-side
Home.md
View page @ f5622183
......@@ -178,7 +178,7 @@ Let's create a file in your git folder and see how this change is shown in git.
nothing added to commit but untracked files present (use "git add" to track)
````
We see that there is a file called "fred.txt" that is not yet in the Index, or in the repo.
We see that there is a file called "fred.txt" that is not yet in the Index, or in the repo.
4. Let's do as suggested as add the file with `git add fred.txt`.
5. If we `git status` again we see:
````
......@@ -190,11 +190,11 @@ We see that there is a file called "fred.txt" that is not yet in the Index, or i
new file: fred.txt
````
Now we see that there are local changes that have not been committed, but are being tracked.
Now we see that there are local changes that have not been committed, but are being tracked.
Do step 2 to 4 again with a new file called "java.txt".
Do step 2 to 4 again with a new file called "java.txt".
Now when we `git status` we see:
Now when we `git status` we see:
````
On branch master
Your branch is up to date with 'origin/master'.
......
Clone repository
  • Home