Skip to content
Snippets Groups Projects

a directory for everyone brave enough to linux

Merged Henrik Jochum requested to merge patch-1 into master
Compare and Show latest version
1 file
+ 11
7
Compare changes
  • Side-by-side
  • Inline
@@ -39,16 +39,20 @@ Hurray! I successfully solved! After a fair bit of trial and error (I was right)
So I found another big thing: hidden files. I had to debug an Atom package and all the internet advice sent me to a hidden directory, /.atom. Couldn't find it so I searched help - again - on the internet. The dot before the name hides the directory, file or whatever. This can be solved by pushing `strg+h` inside the files or - for checking it in the terminal - `ls -a`.
## Branching Things
### Branching Things
(This link is basically what I noticed)[https://stackoverflow.com/questions/67699/how-to-clone-all-remote-branches-in-git#72156]
So I noticed that when you clone a repository it only clones the `master` of the project. If you want to edit another existing branch you first have to add the branch to a remote branch on your machine.
### Notes for myelf
You do this by looking for an option in the editor of your choice called `Create Branch From Remote Branch`. This will create a remote branch based on the branch from the project repository, which you will be able to edit on your local machine.
`git branch -a`
Basically that's it. Like the link above says, `git clone` is supposed to do that (it's not a bug, it's a feature!). In my opinion not really self-explanatory, so it might result in some confusion.
`git clone` only clones the master!
Small edit: So I found out how it works in Sublime (both on Linux and Windows), but still struggling to repeat the same in Atom. I'm able to pull all the branches and checkout the branch I want in GitBash, but then getting the branch into Atom appears to be diffult.
What are the usage rights for other branches? Can I access 12-project-ideas-maryam from my machine? I think not, as I checked it out, but I can't edit it.
Small edit-edit: Okay, I think I figured out how it works in Atom. So after doing what I described in the previous paragraph, one has to go to the braching selection, go to `New Branch`, type in the same name of the branch and then fetch said branch with Right-click and fetch. I'm not sure if this is the intended way, but it works. To be honest, doing it in Sublime was much more intuitive.
Create branch from remote branch! Ok, so there's difference between "branch" and remote "branch". If someone wants to edit an existing branch from a project, they first need to add a remote branch from the origin branch. That's what confused me. So `clone` only adds the master to the local machine and not the branched, which have to be added separately.
\ No newline at end of file
### Updates (23.3.20)
In other news, I'm still having some trouble with my touchpad, so I started disabling it via Terminal (just Linux things). Which works pretty well as I'm slowly getting more adapt to navigating with my keyboard.
I'm slowly beginning to really like Ubuntu, even though it at times can be frustrating. It's a love-hate relationship. The great thing about Linux is: it does what you tell it to do. The bad thing about Linux is: it does what you tell it to do. I think as soon as I'm settled in with all the software I need and am comfortable with everything, it'll be a very enjoyable experience working on Linux. What I really need to get into are the different file-types on Linux. I'm sometimes not sure how to do installations or what to do with other files. But I think this will improve over time.
Loading