-
-
Notifications
You must be signed in to change notification settings - Fork 144
build(deps-dev): bump tar-fs from 2.1.1 to 2.1.4 #260
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Bumps [tar-fs](https://github.com/mafintosh/tar-fs) from 2.1.1 to 2.1.4. - [Commits](mafintosh/tar-fs@v2.1.1...v2.1.4) --- updated-dependencies: - dependency-name: tar-fs dependency-version: 2.1.4 dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Creating and Managing Branches in Git
Branching in Git allows you to work on different versions of your project independently. Here’s how to create, switch, merge, and rebase branches using essential Git commands.
1. Create a Branch
To create a new branch:
git branch <branch-name>
Example:
git branch feature/login
2. Switch Between Branches
You can switch branches using:
git checkout <branch-name>
Or, in newer versions of Git:
git switch <branch-name>
Example:
git checkout feature/login
# or
git switch feature/login
3. Create and Switch to a Branch
Create a new branch and switch to it immediately:
git checkout -b <branch-name>
# or
git switch -c <branch-name>
Example:
git checkout -b feature/signup
# or
git switch -c feature/signup
4. List Branches
To see all branches in your repository:
git branch
5. Merge Branches
To merge changes from one branch (e.g., feature/login
) into your current branch (e.g., main
):
git checkout main
git merge feature/login
6. Rebase Branches
Rebasing applies your changes on top of another branch’s history:
git checkout feature/login
git rebase main
This moves the feature/login
branch to begin on the tip of main
, replaying your commits.
7. Delete a Branch
After merging, you may want to delete a branch:
git branch -d <branch-name>
Example:
git branch -d feature/login
Summary Table
Action | Command Example |
---|---|
Create branch | git branch feature/login |
Switch branch | git checkout feature/login |
Create & switch | git checkout -b feature/signup |
List branches | git branch |
Merge into current branch | git merge feature/login |
Rebase onto another branch | git rebase main |
Delete branch | git branch -d feature/login |
Reference
For more details, see the Git Branching documentation.
<title>Multi-Timezone Digital Clock</title>
<style>
body {
font-family: 'Segoe UI', Arial, sans-serif;
background: #222;
color: #fff;
text-align: center;
padding-top: 40px;
}
.clock-container {
display: flex;
justify-content: center;
gap: 40px;
flex-wrap: wrap;
}
.clock {
background: #333;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
padding: 24px 32px;
min-width: 220px;
}
.tz-title {
font-size: 1.2em;
margin-bottom: 12px;
color: #00d8ff;
}
.tz-time {
font-size: 2.3em;
letter-spacing: 2px;
}
</style>
World Timezone Digital Clock${tz.label}
--:--:--
`;
container.appendChild(clockDiv);
});
// Update clocks every second
function updateClocks() {
timeZones.forEach(tz => {
const now = new Date();
const timeStr = now.toLocaleTimeString('en-US', {
hour: '2-digit',
minute: '2-digit',
second: '2-digit',
hour12: false,
timeZone: tz.zone,
});
document.getElementById('clock-' + tz.zone.replace(/[^\w]/g, '')).textContent = timeStr;
});
}
updateClocks();
setInterval(updateClocks, 1000);
</script>
|
Bumps tar-fs from 2.1.1 to 2.1.4.
Commits
f421a23
2.1.4c412fa1
refactor to same pattern as v34b7e868
2.1.3266194b
hardlink tweak from maind97731b
2.1.2fd1634e
symlink tweak from mainDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)You can disable automated security fix PRs for this repo from the Security Alerts page.