joseluisq/gitnow

Add support for ignore files persistently

Open

#6 opened on Oct 30, 2019

 (0 comments) (1 reaction) (0 assignees)Shell (27 forks)github user discovery
enhancementhelp wanted

Repository metrics

Stars
 (490 stars)
PR merge metrics
 (No merged PRs in 30d)

Description

It would be great if we can support a command to ignore (or revert) files on demand and place them into .gitignore file.

Proposal: I suggest to add an ignore command.

1. Ignore a file:

~> ignore README.md
~> cat .gitignore
# README.md

1. Revert ignored file:

~> ignore --no README.md
~> cat .gitignore
# (empty)

Contributor guide