diff --git a/git_remote-fork_smaple1/.gitignore b/git_remote-fork_smaple1/.gitignore new file mode 100644 index 0000000..f68d109 --- /dev/null +++ b/git_remote-fork_smaple1/.gitignore @@ -0,0 +1,29 @@ +### IntelliJ IDEA ### +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/git_remote-fork_smaple1/.idea/.gitignore b/git_remote-fork_smaple1/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/git_remote-fork_smaple1/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/git_remote-fork_smaple1/A.txt b/git_remote-fork_smaple1/A.txt new file mode 100644 index 0000000..da4a95a --- /dev/null +++ b/git_remote-fork_smaple1/A.txt @@ -0,0 +1,2 @@ +adding sample line +after adding a feature branch f1 \ No newline at end of file diff --git a/git_remote-fork_smaple1/src/Main.java b/git_remote-fork_smaple1/src/Main.java new file mode 100644 index 0000000..930198c --- /dev/null +++ b/git_remote-fork_smaple1/src/Main.java @@ -0,0 +1,15 @@ +//TIP To Run code, press or +// click the icon in the gutter. +public class Main { + public static void main(String[] args) { + //TIP Press with your caret at the highlighted text + // to see how IntelliJ IDEA suggests fixing it. + System.out.printf("Hello and welcome!"); + + for (int i = 1; i <= 5; i++) { + //TIP Press to start debugging your code. We have set one breakpoint + // for you, but you can always add more by pressing . + System.out.println("i = " + i); + } + } +} \ No newline at end of file