Sam Mah
Sam Mah

Reputation: 39

Git Repository - Error Code 128 when merging two pdfs

After I committed two PDFs using "Git add - a", it led to my next problem, Error 128.

I am very new to this Get Repository thing. I am not sure how to fix it with the Go Daddy Terminal. Any help is sincerely appreciated.

error 128 screenshot

Upvotes: 1

Views: 241

Answers (1)

VonC
VonC

Reputation: 1328182

You would need a git stash or a git commit before doing your git pull as part of your manual pull deployment.

https://docs.cpanel.net/img/git-pull-deployment-workflow.png

Since pull does a fetch+merge, the merge part would fail if your working tree is not clean (meaning they are modifications in progress, not yet committed).

Upvotes: 0

Related Questions