egit

Why did the GitHub windows client delete all of my work?

最后都变了- 提交于 2019-12-25 14:00:10
问题 Yesterday, I decided I wanted to upload all of my old crappy work. It is back when I was just starting programming and just wanted to show people it. I have never used git (very bad decision in my part) and created a repository. I downloaded the windows client and the egit eclipse plugin. I used the egit plugin but it just moved everything to a Oder and made it a local repository. I then used the windows client to submit a commit. It was taking a while so I left it on and went to sleep. I

How can I add a certificate to LiClipse to permit access to a git repo via SSL?

橙三吉。 提交于 2019-12-24 20:11:37
问题 When I attempt to interact from LiClipse to the SSL-protected git repo at https://git.ffmpeg.org/ffmpeg.git , I get a dialogue which reads, Provide information for https://git.ffmpeg.org/ffmpeg.git A secure connection to https://git.ffmpeg.org/ffmpeg.git could not be established because the server's certificate could not be validated. SSL reported: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

EGit working directory not under the local repository

走远了吗. 提交于 2019-12-24 05:52:26
问题 The working directory should be visible on a WebDAV server and none of the parent folders should contain the repository itself. I want to separate totally the folder for .git and the working directory (on a different drive, clean from project files and others). Using Eclipse EGIT, the repository creation allows set of working directory (Target Location) within a path within the repository. No way found to set GIT_DIR or working_directory within Eclipse. Linking not an option (Windows) The

EGit working directory not under the local repository

一世执手 提交于 2019-12-24 05:52:24
问题 The working directory should be visible on a WebDAV server and none of the parent folders should contain the repository itself. I want to separate totally the folder for .git and the working directory (on a different drive, clean from project files and others). Using Eclipse EGIT, the repository creation allows set of working directory (Target Location) within a path within the repository. No way found to set GIT_DIR or working_directory within Eclipse. Linking not an option (Windows) The

Function searchissue() from egit don't return all issues in a GitHub repository

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-23 02:36:57
问题 I am trying to find issues from a repository in the GitHub, but when I use the searchissues() function from the IssueService class, that only returns 10 issues. The repository that i am search has more then 40 issues registred. How can i return all de issues registred in my repository? public static void main(String[] args) throws IOException { GitHubClient client = new GitHubClient(); client.setCredentials("xxxxxx", "xxxxx"); int openIssue = 0; int closedIssue = 0; RepositoryService

Unable to push to github with EGIT

泪湿孤枕 提交于 2019-12-23 01:19:19
问题 I have been trying to configure Eclipse (Oxygen) to be able to push to a repository on github, but to no avail. I have been trying many different configurations and using the command line, TortiseGit and Atlassian Sourcetree. I have had varying levels of success with all the others, but not with EGIT on Eclipse. I can clone the repo and import it. I can pull changes from it. But when go to push I always get the same problem, a "Not authorized" error. I have tried using _netrc, ssh keys, and

Eclipse and EGit

放肆的年华 提交于 2019-12-23 00:47:14
问题 I have installed EGit plugin on my Eclipse Helios SR2 Installation. I also have a initialize a GIT repository in one of my projects. But unlike SVN EGIT doesn't show me visiual indications when I make changes to the source code. Why is this happening? Even after the GIT repository is initialized and a commit is made there are no visual indications at all. PS: I have used the Terminal to initialize the repository, add files and make the initial commit. 回答1: If you used the terminal, then you

Problems cloning 1and1 git repository in 1and1 shared Linux server with Eclipse EGit

孤街浪徒 提交于 2019-12-22 17:29:29
问题 I have just setup a git repository in my 1and1 shared hosting. 1and1 offers git as part of the Linux business package and I decided to use it instead of installing my own git. When I do dir .git I can see the information inside the repository: -rw-r--r-- 1 foo ftpusers 23 Sep 6 19:41 HEAD drwxr-xr-x 2 foo ftpusers 6 Sep 6 19:41 branches -rw-r--r-- 1 foo ftpusers 92 Sep 6 20:42 config -rw-r--r-- 1 foo ftpusers 73 Sep 6 19:41 description drwxr-xr-x 2 foo ftpusers 4096 Sep 6 19:41 hooks -rw-r--r

Git ignore a specific file in Eclipse

六月ゝ 毕业季﹏ 提交于 2019-12-22 09:17:10
问题 I guess this kind of question has been asked many times (and I've seen several questions on SO dealing with this subject) but I still have a problem to ignore a file in my Git. The structure of my project looks like this: myProject/ .gitignore src/test/java/packageName/ Main.java I would like to ignore Main.java (the file is different between each user). .gitignore file .settings .project .classpath target/ test-output/ node_modules/** .orig I've tried: Adding src/test/java/packageName/Main

eGit Merge Resolution - Use Your Copy

二次信任 提交于 2019-12-22 03:40:45
问题 I still new to eGit. I'm trying to figure out how on earth to get eGit to resolve a merge conflict using my copy, no change. I'm referring to the notes on the eGit Wiki: http://wiki.eclipse.org/EGit/User_Guide#Possible_merge_results However, when I add my copy to resolve the conflict, eGit still leaves the diff marks in the file "<<<<<<< HEAD", "=======", ">>>>>>>". The doc says to add after using Merge-Tool: edit the working tree version until you are happy with it Team > Add the merged