• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

[ATT] ED Git

Tommy

Founder
We're offering a certain amount of repositories for donators and we're much more giving than Github.

Please keep in mind we are not in any way charging to use the git script we are using. This is just a benefit from donating to EmuDevs.

You can, at any time, set your projects to public or private.
Note: All current donators may request an account for the amount they have already donated.

Registration is closed for members, but us staff will add you ourselves. Leave the username and email you want to use for an account -- the password will be sent by email automatically.

NOTE: Use HTTP, not SSH!
Link to the site: http://git.emudevs.com/

Git Bash RPC failed help:

If you get 'RPC' failed error when using Git Bash do the following:

Option A:
1. Start the git bash console
2. Run the command: git config http.postBuffer 524288000

(FOR projects HIGHER in size this needs to be increased higher)

Option B:
1. Go into your Git folder (where ever you installed it at)
2. Once in Git folder go to etc/ and open gitconfig in notepad or notepad++
3. Inside of the gitconfig you should see the root name called:

Code:
        [http]
	sslCAinfo = /bin/curl-ca-bundle.crt

with an option below it.

Under http add: postBuffer = 524288000

It should now look like:

Code:
        [http]
	sslCAinfo = /bin/curl-ca-bundle.crt
	postBuffer = 524288000

If you already have postBuffer option just set the value to "524288000".

(FOR projects HIGHER in size this needs to be increased higher)
 
Last edited:

Tommy

Founder
Registration is closed for members, but us staff will add you ourselves. Leave the username and email you want to use for an account -- the password will be sent by email automatically.

We aren't using the vBulletin account system since that would blow the whole logic of what we're doing up in smoke. Just link the username and email you want to use for your git account here in this thread.
 

slp13at420

Mad Scientist
will we be able to edit files? right now i cannot use the edit button when viewing a file in my VIP system repo.
 

Tommy

Founder
Are you sure? I can see the option for editing a raw file through the repository itself. Are you sure you were at the right place? As far as I can see, when clicking a raw file path on a commit page won't show "edit" -- you have to directly go to the file via File Browser -> File.

Go to your repository -> Select Files Tab -> Click a file -> Click edit button on the right of the File's Title

JqFYhP2.png


I personally never edited like that even on Github. If you still can't see the edit button after following the above, Faded will look into it thoroughly later on.
 

slp13at420

Mad Scientist
here is my view:

H97xn73.png


i'm logged in but as you see the edit button is grey.

I can edit then commit and push with the wingit console window but I found it a lot easier to edit thru the website.
 
Last edited:

Hyperion

Founder
[MENTION=717]slp13at420[/MENTION] I'll give it a look today. This script is new to me, especially being written in ruby gems/rails.

It's probably just something with permissions

Update:
It's grey for me too, but clicking it still works. Have you tried to click the edit button even though it's grey?

'Master' permissions give the ability to edit the project, and you're a master on the project so it should work
 
Last edited:

slp13at420

Mad Scientist
[MENTION=717]slp13at420[/MENTION] I'll give it a look today. This script is new to me, especially being written in ruby gems/rails.

It's probably just something with permissions

Update:
It's grey for me too, but clicking it still works. Have you tried to click the edit button even though it's grey?

'Master' permissions give the ability to edit the project, and you're a master on the project so it should work

a couple times the edit button did react and open the file to edit but then when I select `Commit changes` it would go to a `the website cannot display the page` screen.
i can manual go to the edit page for a file by changing `blob` in the address to edit . but still when I try to commit the changes it go's to the same `the website cannot display the page` screen.
 
Last edited:
Top