2

Is there a way to monitor or view the git push from Visual Studio Code? i.e. "Pushing file 123/345" or "Pushing [filename]" or any version of that? or any kind of view as if you were FTPing and watching the files as they get uploaded. I have searched for the past couple of hours on google and I could find nothing to that effect.

Thanks.

1
  • git doesn't push files, it pushes references (branches and tags) and commits. Commits contain files but git doesn't report pushed files in commits separately. Commented Sep 9, 2019 at 16:28

1 Answer 1

3

You can run git push from an integrated terminal inside of VS Code and then you will see some information as the files are pushed.

https://code.visualstudio.com/docs/editor/integrated-terminal

You can also monitor the output of the git tools available within VS Code by opening the output window and choosing Git. On Linux, the command to open this output window is [Ctrl + k, Ctrl + h].

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

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.