Hacking-Scripts
Hacking-Scripts copied to clipboard
ADVANCED TICTACTOE GAME USING JAVA .(BASICS OF OOPS , SWING , AWT , I/O)
Is your feature request related to a problem? Please describe. A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Describe the solution you'd like A clear and concise description of what you want to happen.
Describe alternatives you've considered A clear and concise description of any alternative solutions or features you've considered.
Additional context Add any other context or screenshots about the feature request here.
I'm working on the projects if you give permission soon this project is on the platform @Tejas1510 @GowthamGoush and after the permission plz elaborate how i add my project into your platform .
i completed the project but i am confused how to add into your plat form please guide me once @Tejas1510 @RaveenaBhasin @GowthamGoush
Hey @karan4517 I can help you with this! Want to work?
Hey @karan4517 I can guide you. If you have script ready with you and want to contribute then you can create a PR corresponding to this project. Let me tell you how it works!
-
When you want to work on another's GitHub project, the first step is to fork a repo. This creates a new copy of the repo under your Github user account. (I think you have done this already!)
-
Clone this Github repo. Open up the GitBash/Command Line and type in:
git clone https://github.com/<your_username>/Hacking-Scripts.git -
Change the specific directory
cd Hacking-Scripts -
Now create a branch of the main by:
git branch -b <branch_name> -
You can now check the branches by:
git branchYou will see themainbranch and another branch which you just created. -
Never develop on main branch. Switch to development branch (you have created).
git checkout <branch_name> -
Start coding. Always use
git statusto see that you have not made changes on the file you were supposed not to. -
Now you have to add the changes to your present workspace.
git add .In case, if you want to add some files only then use:git add file1 file2 -
Make a commit. This will save a snapshot of your project.
git commit -m "relevant message" -
Push the committed changes in your feature branch to your remote repository.
git push -u origin <branch_name> -
Once you push the changes to your repo, go to your forked repository, the
Compare & pull requestbutton will appear in GitHub. Click it and you'll be taken to another page where you can open a pull request. -
Add an appropriate title and description to your PR explaining your changes.
-
Finally, click on
Create Pull Request.
This allows the repo's maintainers to reviews your work. From here, they can merge it if it is good, or they may ask you for some changes.