Displaying 381 - 390 of 958
Patterns to store and operate data efficiently.
.gitignore File
Class
Ignore files and directories.
A file with the name .gitignore in your repository will tell git to ignore the file.
Use...
#Git
Basic Git tutorial
Exercise
Instructions
- Create a new repository inside your project directory.
git init - Create a README.md file.
- Stage readme file...
#Git
Git log
Class
View list of commits
git log
Show files changed
git log --name-status
Show changes
git log -p
or git log -p dir/
#Git
Get a list of git branches, listed by most recent commit.
#Git