hi everyone, I'm a complete beginner at github and recently got to know termux. #202894
🏷️ Discussion TypeQuestion 💬 Feature/Topic AreaAndroid BodyI have two problems.- three 1- I do not know English and can only communicate through Google Translator, and 2 I could not find the general discussion tab on the main github page. |
Replies: 5 comments 5 replies
This comment was marked as off-topic.
This comment was marked as off-topic.
|
Welcome! Since you are completely new, it may help to separate GitHub and Termux in your mind. They work together, but they are not the same thing. GitHub is a website that stores repositories and provides collaboration tools. Termux is a terminal environment on Android where you can type commands and run programs. Think of GitHub as a library where projects are stored, and Termux as a desk where you work with those projects. GitHub does not have one universal discussion tab on the home page. Discussions belong to a specific repository or organization. For general GitHub questions, you can use the GitHub Community: https://github.com/orgs/community/discussions In a repository, look for the Discussions tab near Code, Issues, and Pull requests. Some repositories do not enable Discussions, so the tab may not always appear. For Termux, start with only a few safe commands: pwd
ls
cd folder-name
mkdir practiceTheir logic is:
Before using Git, you can install it and confirm that it works: pkg update
pkg install git
git --versionDo not paste commands from the internet before understanding what they do, especially commands containing A good way to remember commands is to create a Markdown file such as ## ls
Purpose: lists files and folders.
Example:
lsYou can also run: historyThis displays commands previously entered in the terminal, but personal notes are better because they also explain why each command is used. Learn one small cycle at a time: check your current location, list the files, enter a folder, and return. Once that feels comfortable, move on to |
This comment was marked as spam.
This comment was marked as spam.
|
Hey there! 👋 Thanks for posting in the GitHub Community, @emernikita66-gif ! You are more likely to get a useful response if you are posting in the applicable category. The Mobile category is a place for our community to discuss and provide feedback on the GitHub Mobile app. Triage, collaborate, and manage your work on GitHub from your mobile device. I've gone ahead and moved this to the correct category for you. Good luck! |
|
One thing I would add: don't try to memorize a huge list of commands at the beginning. Learn Termux through small practical tasks instead — navigating directories, working with files, installing packages, running Python, using Git, and understanding what each command changes before you execute it. I maintain DedSec, a free open-source Android/Termux learning workspace built around that idea. It also connects the tools with structured learning material, so it may be useful while you're getting started: https://github.com/dedsec1121fk/DedSec Even if you don't use it, the most important habit is: understand the command first, then run it. Avoid learning Termux through blind copy/paste. |
That is a perfectly normal starting point. Since you already use AI, you can turn it from a command generator into a personal tutor.
Try giving the AI this instruction:
Run only one command at a time. Before pressing Enter, try to predict what will happen. If the result is different from the prediction, stop and share the output instead of immediately trying another command.
It is also a good idea to practice in a separate folder that contains no important files. This gives you a safe place to experiment and ma…