GIT_Troubleshooting
Akkarinage edited this page Nov 5, 2016
·
1 revision
Pages 190
Getting Started
- Installation instructions
- Transitioning from SVN to GIT
- Compiling on your OS
- Connecting & Starting rAthena
Configure your Server
- Scripting like a pro!
- Server Modifications and what to expect
- Database Configuration
Customization
- Adding Custom Items
- Adding Custom Monsters
- GRF Encryption
Setup the Client
- Data folder
- Diff files
Misc Databases
Third-Party Software
Clone this wiki locally
title: GIT Troubleshooting permalink: /GIT_Troubleshooting/
Cloning Problem
Cloning into 'rathena'...
POST git-upload-pack (250 bytes)
remote: Counting objects: 102175, done.
remote: Compressing objects: 100% (16110/16110), done.
fatal: The remote end hung up unexpectedlyMiB | ##.## KiB/s
fatal: early EOF
error: RPC failed; result=18, HTTP code = 200
fatal: index-pack failed
- Cloning process is terminated with error messages above
- Use Git Bash and do
gitconfig--globalhttp.postBuffer524288000(the last number just a speculation size, but it works) - See: Git clone return result=18 code=200 on a specific repository
- Use Git Bash and do
Updating Problem
- git stash
- Problem encounter when Git can identified 'who you are'. *** Please tell me who you are.
- Just do a command example
gitconfig--globaluser.email"youremail@domain.com", and - Just do a command example
gitconfig--globaluser.name"MyName"