.git
Local repository: File-1.txt
## This is an example
It has some content that needs to be version controlled
Remote repository: File-1.txt
## This is an example
It has some content that needs to be version controlled. We are adding some information in the remote repository
Local repository: File-1.txt
## This is an example
It has some content that needs to be version controlled. Adding local changes.
Pull from remote: File-1.txt
## This is an example
<<<<<<< HEAD
It has some content that needs to be version controlled. Adding local changes.
=======
It has some content that needs to be version controlled. We are adding some information in the remote repository.
>>>>>>> aac1016966305b6d8dd91aea5f8194fdfb929171
Local repository: File-1.txt
## This is an example
<<<<<<< HEAD
It has some content that needs to be version controlled. Adding local changes.
=======
It has some content that needs to be version controlled. We are adding some information in the remote repository.
>>>>>>> aac1016966305b6d8dd91aea5f8194fdfb929171
Pull from remote: File-1.txt
<<<<<<< HEAD
This is the state of the file in your copy
=======
This is what you get from the remote
>>>>>>> aac1016966305b6d8dd91aea5f8194fdfb929171
.gitignore
# History files
.Rhistory
.Rapp.history
# Session Data files
.RData
# User-specific files
.Ruserdata
# produced output can be rebuilt from source
*.html
*.pdf
.gitignore
file let’s you decide what files to track in your history.*.pdf
and .html
to .gitignore
we avoid having merge conflicts in files that can be built from source..gitignore
to avoid pushing/pulling files that do not need version control..gitignore
file.