Is there an ignore command for git like there is for svn?

后端 未结 11 2500
一个人的身影
一个人的身影 2020-12-23 00:21

I am a new user to git and I am starting a new project. I have a bunch of dot files that I would like to ignore. Is there an ignore command for git

相关标签:
11条回答
  • 2020-12-23 00:37

    for names not present in the working copy or repo:

    echo /globpattern >> .gitignore
    

    or for an existing file (sh type command line):

    echo /$(ls -1 file) >> .gitignore   # I use tab completion to select the file to be ignored  
    git rm -r --cached file             # if already checked in, deletes it on next commit
    
    0 讨论(0)
  • 2020-12-23 00:38

    There is no special git ignore command.

    Edit a .gitignore file located in the appropriate place within the working copy. You should then add this .gitignore and commit it. Everyone who clones that repo will than have those files ignored.

    Note that only file names starting with / will be relative to the directory .gitignore resides in. Everything else will match files in whatever subdirectory.

    You can also edit .git/info/exclude to ignore specific files just in that one working copy. The .git/info/exclude file will not be committed, and will thus only apply locally in this one working copy.

    You can also set up a global file with patterns to ignore with git config --global core.excludesfile. This will locally apply to all git working copies on the same user's account.

    Run git help gitignore and read the text for the details.

    0 讨论(0)
  • 2020-12-23 00:43

    Using the answers already provided, you can roll your own git ignore command using an alias. Either add this to your ~/.gitconfig file:

    ignore = !sh -c 'echo $1 >> .gitignore' -
    

    Or run this command from the (*nix) shell of your choice:

    git config --global alias.ignore '!sh -c "echo $1 >> .gitignore" -'
    

    You can likewise create a git exclude command by replacing ignore with exclude and .gitignore with .git/info/exclude in the above.

    (If you don't already understand the difference between these two files having read the answers here, see this question.)

    0 讨论(0)
  • 2020-12-23 00:43

    You could also use Joe Blau's gitignore.io

    Either through the web interfase https://www.gitignore.io/

    Or by installing the CLI tool, it's very easy an fast, just type the following on your terminal:

    Linux:
    echo "function gi() { curl -L -s https://www.gitignore.io/api/\$@ ;}" >> ~/.bashrc && source ~/.bashrc

    OSX:
    echo "function gi() { curl -L -s https://www.gitignore.io/api/\$@ ;}" >> ~/.bash_profile && source ~/.bash_profile

    And then you can just type gi followd by the all the platform/environment elements you need gitignore criteria for.

    Example!
    Lets say you're working on a node project that includes grunt and you're using webstorm on linux, then you may want to type:
    gi linux,webstorm,node,grunt > .gitignore ( to make a brand new file)
    or
    gi linux,webstorm,node,grunt >> .gitignore ( to append/add the new rules to an existing file)

    bam, you're good to go

    0 讨论(0)
  • 2020-12-23 00:47

    It's useful to define a complete .gitignore file for your project. The reward is safe use of the convenient --all or -a flag to commands like add and commit.

    Also, consider defining a global ~/.gitignore file for commonly ignored patterns such as *~, which covers temporary files created by Emacs.

    0 讨论(0)
  • 2020-12-23 00:51

    I hope it's not too late.

    If you are on Windows you can just do the following to create a .gitignore file

    echo name_of_the_file_you_want_to_ignore.extension > .gitignore
    

    In order to edit .gitignore you can run

    notepad .gitignore
    
    0 讨论(0)
提交回复
热议问题