Git: Add only modified / deleted files and ignore new files ( i.e. Untracked files ) using “git add -u”
In this article we will discuss how to add only modified & deleted files to the git and ignore all new files and folders. (more…)
Git : How to recursively add all files or folders to a repository?
In this article we will discuss how to recursively add all files, folders, and sub folders of the project to the staging area of git in a single command and…