Not intended as a guide for newbies, more like a "cheat sheet" for the somewhat experienced IRC user, especially one who wields some power over a channel.
/join #channel
- Joins the specified channel.
/part #channel
- Leaves the specified channel.
{"lastUpload":"2022-02-26T05:02:19.651Z","extensionVersion":"v3.4.3"} |
Rebasing is usually used to pull changes from master into your own branch if other commits get merged in after you've branched. If you're working on separate branches (with more than one person), it's a good idea to get comfortable with this process to resolve any merge conflicts that'll occur when you try to merge.
Let's look at an example. Let's say this is the master branch (each 'o' is a commit):
import Foundation | |
public enum CurrencyCode: String, Codable, CaseIterable, Identifiable { | |
case aed, afn, all, amd, ang, aoa, ars, aud, awg, azn, bam, bbd, bdt, bgn, bhd, bif, bmd, bnd, bob, brl, bsd, btn, bwp, byn, bzd, cad, cdf, chf, clp, cny, cop, crc, cuc, cup, cve, czk, djf, dkk, dop, dzd, egp, ern, etb, eur, fjd, fkp, gbp, gel, ggp, ghs, gip, gmd, gnf, gtq, gyd, hkd, hnl, hrk, htg, huf, idr, ils, imp, inr, iqd, irr, isk, jep, jmd, jod, jpy, kes, kgs, khr, kmf, kpw, krw, kwd, kyd, kzt, lak, lbp, lkr, lrd, lsl, lyd, mad, mdl, mga, mkd, mmk, mnt, mop, mru, mur, mvr, mwk, mxn, myr, mzn, nad, ngn, nio, nok, npr, nzd, omr, pab, pen, pgk, php, pkr, pln, pyg, qar, ron, rsd, rub, rwf, sar, sbd, scr, sdg, sek, sgd, shp, sll, sos, spl, srd, stn, svc, syp, szl, thb, tjs, tmt, tnd, top, `try`, ttd, tvd, twd, tzs, uah, ugx, usd, uyu, uzs, vef, vnd, vuv, wst, xaf, eac, xcd, xdr, xof, xpf, yer, zar, zmw | |
public var id: Self { self } | |
public init?(from string: String) { | |
let lowercaseString = |