When you run the git status command, it will show all files that are not yet committed or added to staged area. There are so many temporary files and folders which you don't want to add to the source control repository.
Git
How to create Git shortcut aliases?
Open the config file in the .git directory, in the project base directory and create an alias section and append aliases to it, one per line.
vi .git/config
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[alias]
ci = commit
st = status
co = checkout
b = branch
l = log
d = diff
cmesg = log --pretty=format:"%s"
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[alias]
ci = commit
st = status
co = checkout
b = branch
l = log
d = diff
cmesg = log --pretty=format:"%s"
Revision versioning with Git
Most developers jumping from svn to git, miss the SVN revision numbers, using the svn info command. SVN automatically increment a unique revision number on every commit, independent of the number of times, code compiled or build. This unique revision number was used by developers to version their binaries and uniquely identify the version of their apps.
Sample script to provide revision number in svn: