Answers for "how to use gitignore in the command line"

0

how to make .gitignore

# Open git bash in the directory you wanna create .gitignore
# run command:
$ touch .gitignore
# there you go
Posted by: Guest on February-22-2022
-2

gitignore command

There is no explicit git ignore command; instead, the . gitignore file must be edited and committed by hand when you have new files that you wish to ignore. The . gitignore files hold patterns that are matched against file names in your repository to determine whether or not they should be ignored.
Posted by: Guest on September-14-2021

Code answers related to "how to use gitignore in the command line"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language