1

If there are 1000 files in my local repository, and I want to commit and push only 700 files, is there a possibility?

1

1 Answer 1

3

You can use git commit [files] in order to commit only certain files to your repository OR you can make use of Git's staging area to gradually add the files you want using git add [file] before you commit.

You can check out this guide for a more complete introduction to Git and version control.

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.