Summary
I have installed Git and Git Lfs. I have got a repository on github .
When I try to submit changes in the editor all my assets in content Drawer still has blue cross saying scheduled for addition even after i submit them and the revision control has green checkmark.I also cannot get git bash to connect to github.com.Any help would be appreciated as I had to start a project again from scratch since unreal crashed every time I tried to open it and I don’t want to go through that again .
Please select what you are reporting on:
Creative
What Type of Bug are you experiencing?
Unreal Revision Control
Steps to Reproduce
Install git
Expected Result
Click submit in revision control and blue checkmarks get removed from assets in content folder
Observed Result
The blue checkmarks don’t get removed
Platform(s)
windows 10
hi @XxOVERUNITYxX ,
Go to C:\Users\UERNAME\ in Windows file explorer
So my .gitconfig
[credential]
helper = ghp_xxxxxxxxxxyyyyyyyy
[user]
email = jims.anything@any.com
name = Jimbxxx
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
How to Set Git Username and Password in GitBash? | GeeksforGeeks
Step 4: Set your Password
Git doesn’t directly store passwords in the configuration file, but you can set up a credential helper to store your password securely for future use. Run this command:
$git config --global user.password "1234321"
$ git config --global credential.helper store
$ git config --list
credential.helper=ghp_xyzzzzpppppp
Keep this key safe don’t show it to anyone as they can login as YOU with this!!!
Keep a safe copy as you will need this at every update of Git Bash and only works on latest versions
Now you can access all your Git Repositories from Git Bash