
git - List all local branches without a remote - Stack Overflow
Mar 27, 2013 · git branch (without any options) lists only local branches, but you don't know if they are tracking a remote branch or not. Usually those local branches should be deleted once merged into …
powershell - list local users and their groups - Stack Overflow
30 I'd like to have a report with all the local users and their relative groups (users, power users, administrators and so on. I get the users in this way:
Git: How do I list only local branches? - Stack Overflow
git branch -a shows both remote and local branches. git branch -r shows remote branches. Is there a way to list just the local branches?
How to list unpushed Git commits (local but not on origin)
How can I view any local commits I've made, that haven't yet been pushed to the remote repository? Occasionally, git status will print out that my branch is X commits ahead of origin/master, but not
ip - List ALL devices on local network? - Stack Overflow
Jun 4, 2015 · I want to generate a list of all devices on a local network. I have tried the command arp -a and it has listed some devices, but not all of them. The ifconfig command shows my IP address and …
Listing local administrator group membership on all domain computers
Complete powershell and scripting noob here - I don't even know enough to be dangerous. I need to query all PCs in the domain to determine what their local Administrators group membership is and s...
How to list all processes/services running on different ports
Jan 6, 2020 · Is there a command that lists all the services that are running on different ports of localhost? In my case, when I'm working on an Angular app, I may run it on localhost:4200, a React …
Powershell script to list LOCAL users on all computers within a domain
May 16, 2023 · Looking to obtain a powershell script that will pull a list of LOCAL users on any computer within a domain. I can get the following to work, but its only for one computer in the domain. I'd rathe...
How do I get a list of locally installed Python modules?
There is also pip list --local for distinguishing between virtualenv and global site packages, discussed here.
git tag - How to list all Git tags? - Stack Overflow
Jun 30, 2009 · You also have: git tag -l <pattern> List tags with names that match the given pattern (or all if no pattern is given). Typing "git tag" without arguments, also lists all tags.