How to save Java Project from IntelliJ IDEA to Git repo so it will build on another PC after cloning?
up vote
1
down vote
favorite
I'm building a simple calculator app from a tutorial/class on Pluralsight (Java Fundamentals class), which starts with a Main.java
file, and adds a class file later, MathEquation.java
.
I created a Git repo to track my progress, and uploaded to Github: JavaFundamentalsClass. I used GitIgnore.IO to find a Java IntelliJ .gitignore file, and everything seemed to be working fine on the original PC I was using.
However, after switching over to a different PC, with a fresh install of IDEA, I cloned down the repo from Github, and found that the project would not build and/or run. I get this error:
"C:Program FilesRedHatjava-1.8.0-openjdk-1.8.0.191-1binjava.exe" -Dfile.encoding=windows-1252 -jar ""
Error: Unable to access jarfile
Process finished with exit code 1
I suspect that there is something in the .gitigore
file that is keeping some of the project, dependency, or build information from being saved in the repo that keeps IDEA from having all the info it needs to build and run the Main.java
correctly.
Can anyone help? You should be able to download the project from the repo linked above in it's currently broken state, including the .gitignore file.
Additional Info
I wiped my repo clean and recloned and I forgot, originally it doesn't even give me the run button (it is grayed out). I had to do a procedure with "Add Configuration" from a search I did for that to show up to get the error above.
Also, I did install java from the OpenJDK, rather than oracle. I figured with Oracle cutting off commercial development maybe start the switch now as I'm learning, but maybe that's the issue (normal Java on my other PC).
It's working, but...
First thing - Intellij needs to know where Java is. It appears that if the SDK/JDK is not installed prior to Intellij, you will need to tell it where Java is after installing. Or if you use OpenJDK instead of Oracle Java SDK. You can do that at View/Open Library Settings
, under Platform Settings / SDKs (select the JDK home path
).
Then, after setting up Java, I am able to get everything working in Intellij IDEA if I find the Main.java
file, right-click, and choose "Run main.main()". This runs the program okay, and also creates a Main
configuration in the Run/Debug configuration area, and finally the "Run" button becomes available.
So I can get it working, but if I wipe all the files and clone it fresh from the remote repo, I have to go through running the Main.java
file directly again to recreate the configuration.
So, this still doesn't answer my original question. Why doesn't this configuration get saved in the repo? What file is this information saved in? Is there something in the .gitignore
file that is keeping this information from being saved to the repo?
java git intellij-idea
add a comment |
up vote
1
down vote
favorite
I'm building a simple calculator app from a tutorial/class on Pluralsight (Java Fundamentals class), which starts with a Main.java
file, and adds a class file later, MathEquation.java
.
I created a Git repo to track my progress, and uploaded to Github: JavaFundamentalsClass. I used GitIgnore.IO to find a Java IntelliJ .gitignore file, and everything seemed to be working fine on the original PC I was using.
However, after switching over to a different PC, with a fresh install of IDEA, I cloned down the repo from Github, and found that the project would not build and/or run. I get this error:
"C:Program FilesRedHatjava-1.8.0-openjdk-1.8.0.191-1binjava.exe" -Dfile.encoding=windows-1252 -jar ""
Error: Unable to access jarfile
Process finished with exit code 1
I suspect that there is something in the .gitigore
file that is keeping some of the project, dependency, or build information from being saved in the repo that keeps IDEA from having all the info it needs to build and run the Main.java
correctly.
Can anyone help? You should be able to download the project from the repo linked above in it's currently broken state, including the .gitignore file.
Additional Info
I wiped my repo clean and recloned and I forgot, originally it doesn't even give me the run button (it is grayed out). I had to do a procedure with "Add Configuration" from a search I did for that to show up to get the error above.
Also, I did install java from the OpenJDK, rather than oracle. I figured with Oracle cutting off commercial development maybe start the switch now as I'm learning, but maybe that's the issue (normal Java on my other PC).
It's working, but...
First thing - Intellij needs to know where Java is. It appears that if the SDK/JDK is not installed prior to Intellij, you will need to tell it where Java is after installing. Or if you use OpenJDK instead of Oracle Java SDK. You can do that at View/Open Library Settings
, under Platform Settings / SDKs (select the JDK home path
).
Then, after setting up Java, I am able to get everything working in Intellij IDEA if I find the Main.java
file, right-click, and choose "Run main.main()". This runs the program okay, and also creates a Main
configuration in the Run/Debug configuration area, and finally the "Run" button becomes available.
So I can get it working, but if I wipe all the files and clone it fresh from the remote repo, I have to go through running the Main.java
file directly again to recreate the configuration.
So, this still doesn't answer my original question. Why doesn't this configuration get saved in the repo? What file is this information saved in? Is there something in the .gitignore
file that is keeping this information from being saved to the repo?
java git intellij-idea
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I'm building a simple calculator app from a tutorial/class on Pluralsight (Java Fundamentals class), which starts with a Main.java
file, and adds a class file later, MathEquation.java
.
I created a Git repo to track my progress, and uploaded to Github: JavaFundamentalsClass. I used GitIgnore.IO to find a Java IntelliJ .gitignore file, and everything seemed to be working fine on the original PC I was using.
However, after switching over to a different PC, with a fresh install of IDEA, I cloned down the repo from Github, and found that the project would not build and/or run. I get this error:
"C:Program FilesRedHatjava-1.8.0-openjdk-1.8.0.191-1binjava.exe" -Dfile.encoding=windows-1252 -jar ""
Error: Unable to access jarfile
Process finished with exit code 1
I suspect that there is something in the .gitigore
file that is keeping some of the project, dependency, or build information from being saved in the repo that keeps IDEA from having all the info it needs to build and run the Main.java
correctly.
Can anyone help? You should be able to download the project from the repo linked above in it's currently broken state, including the .gitignore file.
Additional Info
I wiped my repo clean and recloned and I forgot, originally it doesn't even give me the run button (it is grayed out). I had to do a procedure with "Add Configuration" from a search I did for that to show up to get the error above.
Also, I did install java from the OpenJDK, rather than oracle. I figured with Oracle cutting off commercial development maybe start the switch now as I'm learning, but maybe that's the issue (normal Java on my other PC).
It's working, but...
First thing - Intellij needs to know where Java is. It appears that if the SDK/JDK is not installed prior to Intellij, you will need to tell it where Java is after installing. Or if you use OpenJDK instead of Oracle Java SDK. You can do that at View/Open Library Settings
, under Platform Settings / SDKs (select the JDK home path
).
Then, after setting up Java, I am able to get everything working in Intellij IDEA if I find the Main.java
file, right-click, and choose "Run main.main()". This runs the program okay, and also creates a Main
configuration in the Run/Debug configuration area, and finally the "Run" button becomes available.
So I can get it working, but if I wipe all the files and clone it fresh from the remote repo, I have to go through running the Main.java
file directly again to recreate the configuration.
So, this still doesn't answer my original question. Why doesn't this configuration get saved in the repo? What file is this information saved in? Is there something in the .gitignore
file that is keeping this information from being saved to the repo?
java git intellij-idea
I'm building a simple calculator app from a tutorial/class on Pluralsight (Java Fundamentals class), which starts with a Main.java
file, and adds a class file later, MathEquation.java
.
I created a Git repo to track my progress, and uploaded to Github: JavaFundamentalsClass. I used GitIgnore.IO to find a Java IntelliJ .gitignore file, and everything seemed to be working fine on the original PC I was using.
However, after switching over to a different PC, with a fresh install of IDEA, I cloned down the repo from Github, and found that the project would not build and/or run. I get this error:
"C:Program FilesRedHatjava-1.8.0-openjdk-1.8.0.191-1binjava.exe" -Dfile.encoding=windows-1252 -jar ""
Error: Unable to access jarfile
Process finished with exit code 1
I suspect that there is something in the .gitigore
file that is keeping some of the project, dependency, or build information from being saved in the repo that keeps IDEA from having all the info it needs to build and run the Main.java
correctly.
Can anyone help? You should be able to download the project from the repo linked above in it's currently broken state, including the .gitignore file.
Additional Info
I wiped my repo clean and recloned and I forgot, originally it doesn't even give me the run button (it is grayed out). I had to do a procedure with "Add Configuration" from a search I did for that to show up to get the error above.
Also, I did install java from the OpenJDK, rather than oracle. I figured with Oracle cutting off commercial development maybe start the switch now as I'm learning, but maybe that's the issue (normal Java on my other PC).
It's working, but...
First thing - Intellij needs to know where Java is. It appears that if the SDK/JDK is not installed prior to Intellij, you will need to tell it where Java is after installing. Or if you use OpenJDK instead of Oracle Java SDK. You can do that at View/Open Library Settings
, under Platform Settings / SDKs (select the JDK home path
).
Then, after setting up Java, I am able to get everything working in Intellij IDEA if I find the Main.java
file, right-click, and choose "Run main.main()". This runs the program okay, and also creates a Main
configuration in the Run/Debug configuration area, and finally the "Run" button becomes available.
So I can get it working, but if I wipe all the files and clone it fresh from the remote repo, I have to go through running the Main.java
file directly again to recreate the configuration.
So, this still doesn't answer my original question. Why doesn't this configuration get saved in the repo? What file is this information saved in? Is there something in the .gitignore
file that is keeping this information from being saved to the repo?
java git intellij-idea
java git intellij-idea
edited Nov 11 at 0:38
asked Nov 10 at 5:41
LightCC
1,159725
1,159725
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
up vote
2
down vote
Look like you have a different java version on your second machine.
- First of all, check your java version
- Update the configuration of your project, right now it pointing to java 1.8
https://github.com/LightCC/JavaFundamentalsClass/blob/master/.idea/misc.xml
This was partly right. I needed to show Intellij where Java was, using the "External Libraries" area. This was required after installing Java, whether I used Oracle's Java SDK or OpenJDK. But then I still need to find and run the "main" file directly to get the main "Run" button to become available. This also creates a configuration for "Main". Why doesn't this configuration get stored in the repo?
– LightCC
Nov 10 at 23:44
add a comment |
up vote
1
down vote
I think it might be because of java not installed on the other PC you were trying. If it is installed just check whether the path mentioned has java executable file.
@LightCC do you have java installed on other PC? I see the issue is clearly not with IDE or .gitignore file.
– Hrudayanath
Nov 10 at 5:51
I have thejava-1.8.0-openjdk-1.8.0.191-1
OpenJDK installed. Maybe this is the issue, but it is showing up in the project under the "External Libraries" area.
– LightCC
Nov 10 at 5:53
@LightCC can you try out jetbrains.com/help/idea/… , just try creating simple hello world program and try to run it, once done you can import the cloned project to IDE and run it.
– Hrudayanath
Nov 10 at 6:08
Once I point Intellij to Java, then I can build, but I have to find the file with the Main function and directly run it by right-clicking and selecting run. After I do that once, it adds a configuration for "Main" and the normal run button comes available. But if I delete all the files and reclone the repo, I'm back to the same situation - why doesn't that configuration for Main save to the repo?
– LightCC
Nov 10 at 23:48
add a comment |
up vote
0
down vote
accepted
The first part is ensuring Java is setup, and that Intellij IDEA knows where Java is, per the other answers, comments, and addendums to the question.
The second part is setting up the run/debug configuration, per the "It's working but.." section of the question. This can be created automatically by right-clicking the file that has the main class to be run (usually Main()...), and selecting the "Run Main.main()" option (replacing
Main
andmain()
with the file and function which needs to be run)The final piece is that to get the run/debug configurations to save to the repo, you either need to:
- Share the
workspace.xml
file (i.e. make sure this is not in the.gitignore
file). However, there is a lot of user-specific stuff in that file, so it should normally be excluded from the repo. - Or, edit the configuration and checkmark the "Share" box in the upper right-hand corner (just right of the "Name" field). This will put the configuration into a separate folder inside the
.idea
folder, which should not be excluded from the repo by.gitignore
.
- Share the
add a comment |
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
Look like you have a different java version on your second machine.
- First of all, check your java version
- Update the configuration of your project, right now it pointing to java 1.8
https://github.com/LightCC/JavaFundamentalsClass/blob/master/.idea/misc.xml
This was partly right. I needed to show Intellij where Java was, using the "External Libraries" area. This was required after installing Java, whether I used Oracle's Java SDK or OpenJDK. But then I still need to find and run the "main" file directly to get the main "Run" button to become available. This also creates a configuration for "Main". Why doesn't this configuration get stored in the repo?
– LightCC
Nov 10 at 23:44
add a comment |
up vote
2
down vote
Look like you have a different java version on your second machine.
- First of all, check your java version
- Update the configuration of your project, right now it pointing to java 1.8
https://github.com/LightCC/JavaFundamentalsClass/blob/master/.idea/misc.xml
This was partly right. I needed to show Intellij where Java was, using the "External Libraries" area. This was required after installing Java, whether I used Oracle's Java SDK or OpenJDK. But then I still need to find and run the "main" file directly to get the main "Run" button to become available. This also creates a configuration for "Main". Why doesn't this configuration get stored in the repo?
– LightCC
Nov 10 at 23:44
add a comment |
up vote
2
down vote
up vote
2
down vote
Look like you have a different java version on your second machine.
- First of all, check your java version
- Update the configuration of your project, right now it pointing to java 1.8
https://github.com/LightCC/JavaFundamentalsClass/blob/master/.idea/misc.xml
Look like you have a different java version on your second machine.
- First of all, check your java version
- Update the configuration of your project, right now it pointing to java 1.8
https://github.com/LightCC/JavaFundamentalsClass/blob/master/.idea/misc.xml
answered Nov 10 at 7:38
CodeWizard
49.3k126688
49.3k126688
This was partly right. I needed to show Intellij where Java was, using the "External Libraries" area. This was required after installing Java, whether I used Oracle's Java SDK or OpenJDK. But then I still need to find and run the "main" file directly to get the main "Run" button to become available. This also creates a configuration for "Main". Why doesn't this configuration get stored in the repo?
– LightCC
Nov 10 at 23:44
add a comment |
This was partly right. I needed to show Intellij where Java was, using the "External Libraries" area. This was required after installing Java, whether I used Oracle's Java SDK or OpenJDK. But then I still need to find and run the "main" file directly to get the main "Run" button to become available. This also creates a configuration for "Main". Why doesn't this configuration get stored in the repo?
– LightCC
Nov 10 at 23:44
This was partly right. I needed to show Intellij where Java was, using the "External Libraries" area. This was required after installing Java, whether I used Oracle's Java SDK or OpenJDK. But then I still need to find and run the "main" file directly to get the main "Run" button to become available. This also creates a configuration for "Main". Why doesn't this configuration get stored in the repo?
– LightCC
Nov 10 at 23:44
This was partly right. I needed to show Intellij where Java was, using the "External Libraries" area. This was required after installing Java, whether I used Oracle's Java SDK or OpenJDK. But then I still need to find and run the "main" file directly to get the main "Run" button to become available. This also creates a configuration for "Main". Why doesn't this configuration get stored in the repo?
– LightCC
Nov 10 at 23:44
add a comment |
up vote
1
down vote
I think it might be because of java not installed on the other PC you were trying. If it is installed just check whether the path mentioned has java executable file.
@LightCC do you have java installed on other PC? I see the issue is clearly not with IDE or .gitignore file.
– Hrudayanath
Nov 10 at 5:51
I have thejava-1.8.0-openjdk-1.8.0.191-1
OpenJDK installed. Maybe this is the issue, but it is showing up in the project under the "External Libraries" area.
– LightCC
Nov 10 at 5:53
@LightCC can you try out jetbrains.com/help/idea/… , just try creating simple hello world program and try to run it, once done you can import the cloned project to IDE and run it.
– Hrudayanath
Nov 10 at 6:08
Once I point Intellij to Java, then I can build, but I have to find the file with the Main function and directly run it by right-clicking and selecting run. After I do that once, it adds a configuration for "Main" and the normal run button comes available. But if I delete all the files and reclone the repo, I'm back to the same situation - why doesn't that configuration for Main save to the repo?
– LightCC
Nov 10 at 23:48
add a comment |
up vote
1
down vote
I think it might be because of java not installed on the other PC you were trying. If it is installed just check whether the path mentioned has java executable file.
@LightCC do you have java installed on other PC? I see the issue is clearly not with IDE or .gitignore file.
– Hrudayanath
Nov 10 at 5:51
I have thejava-1.8.0-openjdk-1.8.0.191-1
OpenJDK installed. Maybe this is the issue, but it is showing up in the project under the "External Libraries" area.
– LightCC
Nov 10 at 5:53
@LightCC can you try out jetbrains.com/help/idea/… , just try creating simple hello world program and try to run it, once done you can import the cloned project to IDE and run it.
– Hrudayanath
Nov 10 at 6:08
Once I point Intellij to Java, then I can build, but I have to find the file with the Main function and directly run it by right-clicking and selecting run. After I do that once, it adds a configuration for "Main" and the normal run button comes available. But if I delete all the files and reclone the repo, I'm back to the same situation - why doesn't that configuration for Main save to the repo?
– LightCC
Nov 10 at 23:48
add a comment |
up vote
1
down vote
up vote
1
down vote
I think it might be because of java not installed on the other PC you were trying. If it is installed just check whether the path mentioned has java executable file.
I think it might be because of java not installed on the other PC you were trying. If it is installed just check whether the path mentioned has java executable file.
answered Nov 10 at 5:45
Hrudayanath
13310
13310
@LightCC do you have java installed on other PC? I see the issue is clearly not with IDE or .gitignore file.
– Hrudayanath
Nov 10 at 5:51
I have thejava-1.8.0-openjdk-1.8.0.191-1
OpenJDK installed. Maybe this is the issue, but it is showing up in the project under the "External Libraries" area.
– LightCC
Nov 10 at 5:53
@LightCC can you try out jetbrains.com/help/idea/… , just try creating simple hello world program and try to run it, once done you can import the cloned project to IDE and run it.
– Hrudayanath
Nov 10 at 6:08
Once I point Intellij to Java, then I can build, but I have to find the file with the Main function and directly run it by right-clicking and selecting run. After I do that once, it adds a configuration for "Main" and the normal run button comes available. But if I delete all the files and reclone the repo, I'm back to the same situation - why doesn't that configuration for Main save to the repo?
– LightCC
Nov 10 at 23:48
add a comment |
@LightCC do you have java installed on other PC? I see the issue is clearly not with IDE or .gitignore file.
– Hrudayanath
Nov 10 at 5:51
I have thejava-1.8.0-openjdk-1.8.0.191-1
OpenJDK installed. Maybe this is the issue, but it is showing up in the project under the "External Libraries" area.
– LightCC
Nov 10 at 5:53
@LightCC can you try out jetbrains.com/help/idea/… , just try creating simple hello world program and try to run it, once done you can import the cloned project to IDE and run it.
– Hrudayanath
Nov 10 at 6:08
Once I point Intellij to Java, then I can build, but I have to find the file with the Main function and directly run it by right-clicking and selecting run. After I do that once, it adds a configuration for "Main" and the normal run button comes available. But if I delete all the files and reclone the repo, I'm back to the same situation - why doesn't that configuration for Main save to the repo?
– LightCC
Nov 10 at 23:48
@LightCC do you have java installed on other PC? I see the issue is clearly not with IDE or .gitignore file.
– Hrudayanath
Nov 10 at 5:51
@LightCC do you have java installed on other PC? I see the issue is clearly not with IDE or .gitignore file.
– Hrudayanath
Nov 10 at 5:51
I have the
java-1.8.0-openjdk-1.8.0.191-1
OpenJDK installed. Maybe this is the issue, but it is showing up in the project under the "External Libraries" area.– LightCC
Nov 10 at 5:53
I have the
java-1.8.0-openjdk-1.8.0.191-1
OpenJDK installed. Maybe this is the issue, but it is showing up in the project under the "External Libraries" area.– LightCC
Nov 10 at 5:53
@LightCC can you try out jetbrains.com/help/idea/… , just try creating simple hello world program and try to run it, once done you can import the cloned project to IDE and run it.
– Hrudayanath
Nov 10 at 6:08
@LightCC can you try out jetbrains.com/help/idea/… , just try creating simple hello world program and try to run it, once done you can import the cloned project to IDE and run it.
– Hrudayanath
Nov 10 at 6:08
Once I point Intellij to Java, then I can build, but I have to find the file with the Main function and directly run it by right-clicking and selecting run. After I do that once, it adds a configuration for "Main" and the normal run button comes available. But if I delete all the files and reclone the repo, I'm back to the same situation - why doesn't that configuration for Main save to the repo?
– LightCC
Nov 10 at 23:48
Once I point Intellij to Java, then I can build, but I have to find the file with the Main function and directly run it by right-clicking and selecting run. After I do that once, it adds a configuration for "Main" and the normal run button comes available. But if I delete all the files and reclone the repo, I'm back to the same situation - why doesn't that configuration for Main save to the repo?
– LightCC
Nov 10 at 23:48
add a comment |
up vote
0
down vote
accepted
The first part is ensuring Java is setup, and that Intellij IDEA knows where Java is, per the other answers, comments, and addendums to the question.
The second part is setting up the run/debug configuration, per the "It's working but.." section of the question. This can be created automatically by right-clicking the file that has the main class to be run (usually Main()...), and selecting the "Run Main.main()" option (replacing
Main
andmain()
with the file and function which needs to be run)The final piece is that to get the run/debug configurations to save to the repo, you either need to:
- Share the
workspace.xml
file (i.e. make sure this is not in the.gitignore
file). However, there is a lot of user-specific stuff in that file, so it should normally be excluded from the repo. - Or, edit the configuration and checkmark the "Share" box in the upper right-hand corner (just right of the "Name" field). This will put the configuration into a separate folder inside the
.idea
folder, which should not be excluded from the repo by.gitignore
.
- Share the
add a comment |
up vote
0
down vote
accepted
The first part is ensuring Java is setup, and that Intellij IDEA knows where Java is, per the other answers, comments, and addendums to the question.
The second part is setting up the run/debug configuration, per the "It's working but.." section of the question. This can be created automatically by right-clicking the file that has the main class to be run (usually Main()...), and selecting the "Run Main.main()" option (replacing
Main
andmain()
with the file and function which needs to be run)The final piece is that to get the run/debug configurations to save to the repo, you either need to:
- Share the
workspace.xml
file (i.e. make sure this is not in the.gitignore
file). However, there is a lot of user-specific stuff in that file, so it should normally be excluded from the repo. - Or, edit the configuration and checkmark the "Share" box in the upper right-hand corner (just right of the "Name" field). This will put the configuration into a separate folder inside the
.idea
folder, which should not be excluded from the repo by.gitignore
.
- Share the
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
The first part is ensuring Java is setup, and that Intellij IDEA knows where Java is, per the other answers, comments, and addendums to the question.
The second part is setting up the run/debug configuration, per the "It's working but.." section of the question. This can be created automatically by right-clicking the file that has the main class to be run (usually Main()...), and selecting the "Run Main.main()" option (replacing
Main
andmain()
with the file and function which needs to be run)The final piece is that to get the run/debug configurations to save to the repo, you either need to:
- Share the
workspace.xml
file (i.e. make sure this is not in the.gitignore
file). However, there is a lot of user-specific stuff in that file, so it should normally be excluded from the repo. - Or, edit the configuration and checkmark the "Share" box in the upper right-hand corner (just right of the "Name" field). This will put the configuration into a separate folder inside the
.idea
folder, which should not be excluded from the repo by.gitignore
.
- Share the
The first part is ensuring Java is setup, and that Intellij IDEA knows where Java is, per the other answers, comments, and addendums to the question.
The second part is setting up the run/debug configuration, per the "It's working but.." section of the question. This can be created automatically by right-clicking the file that has the main class to be run (usually Main()...), and selecting the "Run Main.main()" option (replacing
Main
andmain()
with the file and function which needs to be run)The final piece is that to get the run/debug configurations to save to the repo, you either need to:
- Share the
workspace.xml
file (i.e. make sure this is not in the.gitignore
file). However, there is a lot of user-specific stuff in that file, so it should normally be excluded from the repo. - Or, edit the configuration and checkmark the "Share" box in the upper right-hand corner (just right of the "Name" field). This will put the configuration into a separate folder inside the
.idea
folder, which should not be excluded from the repo by.gitignore
.
- Share the
answered Nov 12 at 5:02
LightCC
1,159725
1,159725
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53236310%2fhow-to-save-java-project-from-intellij-idea-to-git-repo-so-it-will-build-on-anot%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown